home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 1 / Gekikoh Dennoh Club Vol. 1 (Japan).7z / Gekikoh Dennoh Club Vol. 1 (Japan) (Track 1).bin / kowin / archive / apl / tvv132.lzh / microview.h < prev    next >
C/C++ Source or Header  |  1995-12-22  |  523b  |  31 lines

  1. /*
  2.     MicroView.win Copyright 1995 小笠原博之
  3.     oga@dgw.yz.yamagata-u.ac.jp
  4. */
  5.  
  6. #define        VVV    1
  7.  
  8. #include    <corlib.h>
  9. #include    <HS_wlib.h>
  10. #include    <sys_doslib.h>
  11. #include    <microstr.h>
  12.  
  13. #define        VERSION        "tview 1.00"
  14.  
  15. typedef struct {
  16.     unsigned char    **lp,
  17.             *fbuf;
  18.     int    tabsize,    /* 8 */
  19.         tabmask,    /* 7 */
  20.         maxcol,        /* 80 */
  21.         line;        /* tota lines */
  22.     int    font_x, font_y, font_z,
  23.         attr, backattr;
  24.     WindowID    awp, bwp;
  25.     int    x, y, h, v;
  26.     char    title[32];
  27.     int    curpos;
  28. } T_BUFP;
  29.  
  30. extern    GlobalCount;
  31.